【例子介绍】支持多种数据库的实体生成器源码C#
支持多种数据库的实体生成器源码C#支持多种数据库的实体生成器源码C#支持多种数据库的实体生成器源码C#支持多种数据库的实体生成器源码C#
【相关图片】
【源码结构】
.
├── EntityGenerateTool
│ ├── EntityGenerateTool
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── BaseWindow
│ │ │ ├── BaseWindow.cs
│ │ │ └── Style
│ │ │ └── WindowBaseStyle.xaml
│ │ ├── CommonLib
│ │ │ ├── Loading.dll
│ │ │ └── Oracle.ManagedDataAccess.dll
│ │ ├── EntityGenerateTool.csproj
│ │ ├── Loading.xaml
│ │ ├── Loading.xaml.cs
│ │ ├── Logs
│ │ │ ├── Error
│ │ │ │ ├── 2017-11-15.txt
│ │ │ │ └── 2017-11-17.txt
│ │ │ └── Trace
│ │ │ ├── 2017-11-15.txt
│ │ │ ├── 2017-11-17.txt
│ │ │ └── 2017-11-20.txt
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Model
│ │ │ └── Model_Main.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SysConfig
│ │ │ └── NLog.config
│ │ ├── Utils
│ │ │ ├── Coverter.cs
│ │ │ ├── LogHelper.cs
│ │ │ └── Utils.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Config
│ │ │ │ ├── EntityGenerateTool.application
│ │ │ │ ├── EntityGenerateTool.exe
│ │ │ │ ├── EntityGenerateTool.exe.config
│ │ │ │ ├── EntityGenerateTool.exe.manifest
│ │ │ │ ├── EntityGenerateTool.pdb
│ │ │ │ ├── EntityGenerateTool.vshost.application
│ │ │ │ ├── EntityGenerateTool.vshost.exe
│ │ │ │ ├── EntityGenerateTool.vshost.exe.config
│ │ │ │ ├── EntityGenerateTool.vshost.exe.manifest
│ │ │ │ ├── Loading.dll
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── MySql.Data.xml
│ │ │ │ ├── NLog.dll
│ │ │ │ ├── NLog.xml
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── Oracle.ManagedDataAccess.dll
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── SysConfig
│ │ │ │ │ └── NLog.config
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.xml
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── EntityGenerateTool
│ │ │ │ ├── Config
│ │ │ │ ├── EntityGenerateTool.application
│ │ │ │ ├── EntityGenerateTool.exe
│ │ │ │ ├── EntityGenerateTool.exe.config
│ │ │ │ ├── EntityGenerateTool.exe.manifest
│ │ │ │ ├── EntityGenerateTool.pdb
│ │ │ │ ├── EntityGenerateTool.vshost.application
│ │ │ │ ├── EntityGenerateTool.vshost.exe
│ │ │ │ ├── EntityGenerateTool.vshost.exe.config
│ │ │ │ ├── EntityGenerateTool.vshost.exe.manifest
│ │ │ │ ├── Loading.dll
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── MySql.Data.xml
│ │ │ │ ├── NLog.dll
│ │ │ │ ├── NLog.xml
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── Oracle.ManagedDataAccess.dll
│ │ │ │ ├── SqlSugar.dll
│ │ │ │ ├── SysConfig
│ │ │ │ │ └── NLog.config
│ │ │ │ ├── System.Data.SQLite.dll
│ │ │ │ ├── System.Data.SQLite.xml
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── EntityGenerateTool.rar
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── BaseWindow
│ │ │ │ └── Style
│ │ │ │ └── WindowBaseStyle.baml
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── EntityGenerateTool.Properties.Resources.resources
│ │ │ ├── EntityGenerateTool.application
│ │ │ ├── EntityGenerateTool.csproj.FileListAbsolute.txt
│ │ │ ├── EntityGenerateTool.csproj.GenerateResource.Cache
│ │ │ ├── EntityGenerateTool.csprojResolveAssemblyReference.cache
│ │ │ ├── EntityGenerateTool.exe
│ │ │ ├── EntityGenerateTool.exe.manifest
│ │ │ ├── EntityGenerateTool.g.resources
│ │ │ ├── EntityGenerateTool.pdb
│ │ │ ├── EntityGenerateTool_Content.g.i.cs
│ │ │ ├── EntityGenerateTool_MarkupCompile.cache
│ │ │ ├── EntityGenerateTool_MarkupCompile.i.cache
│ │ │ ├── EntityGenerateTool_MarkupCompile.lref
│ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── Loading.baml
│ │ │ ├── Loading.g.cs
│ │ │ ├── Loading.g.i.cs
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── TempPE
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── packages.config
│ ├── EntityGenerateTool.sln
│ └── packages
│ ├── EntityFramework.6.0.0
│ │ ├── Content
│ │ │ ├── App.config.transform
│ │ │ └── Web.config.transform
│ │ ├── EntityFramework.6.0.0.nupkg
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ │ ├── EntityFramework.dll
│ │ │ │ └── EntityFramework.xml
│ │ │ └── net45
│ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ ├── EntityFramework.dll
│ │ │ └── EntityFramework.xml
│ │ └── tools
│ │ ├── EntityFramework.PowerShell.Utility.dll
│ │ ├── EntityFramework.PowerShell.dll
│ │ ├── EntityFramework.psd1
│ │ ├── EntityFramework.psm1
│ │ ├── about_EntityFramework.help.txt
│ │ ├── init.ps1
│ │ ├── install.ps1
│ │ └── migrate.exe
│ ├── MySql.Data.6.10.4
│ │ ├── MySql.Data.6.10.4.nupkg
│ │ ├── content
│ │ │ ├── app.config.transform
│ │ │ ├── docs
│ │ │ │ ├── MySqlCommand.xml
│ │ │ │ ├── MySqlCommandBuilder.xml
│ │ │ │ ├── MySqlConnection.xml
│ │ │ │ ├── MySqlConnectionStringBuilder.xml
│ │ │ │ ├── MySqlDataAdapter.xml
│ │ │ │ ├── MySqlDataReader.xml
│ │ │ │ ├── MySqlException.xml
│ │ │ │ ├── MySqlHelper.xml
│ │ │ │ ├── MySqlParameter.xml
│ │ │ │ ├── MySqlParameterCollection.xml
│ │ │ │ └── MySqlTransaction.xml
│ │ │ └── web.config.transform
│ │ ├── contentFiles
│ │ │ └── any
│ │ │ ├── net452
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── docs
│ │ │ │ │ ├── MySqlCommand.xml
│ │ │ │ │ ├── MySqlCommandBuilder.xml
│ │ │ │ │ ├── MySqlConnection.xml
│ │ │ │ │ ├── MySqlConnectionStringBuilder.xml
│ │ │ │ │ ├── MySqlDataAdapter.xml
│ │ │ │ │ ├── MySqlDataReader.xml
│ │ │ │ │ ├── MySqlException.xml
│ │ │ │ │ ├── MySqlHelper.xml
│ │ │ │ │ ├── MySqlParameter.xml
│ │ │ │ │ ├── MySqlParameterCollection.xml
│ │ │ │ │ └── MySqlTransaction.xml
│ │ │ │ └── web.config.transform
│ │ │ └── netstandard1.3
│ │ │ ├── app.config.transform
│ │ │ ├── docs
│ │ │ │ ├── MySqlCommand.xml
│ │ │ │ ├── MySqlCommandBuilder.xml
│ │ │ │ ├── MySqlConnection.xml
│ │ │ │ ├── MySqlConnectionStringBuilder.xml
│ │ │ │ ├── MySqlDataAdapter.xml
│ │ │ │ ├── MySqlDataReader.xml
│ │ │ │ ├── MySqlException.xml
│ │ │ │ ├── MySqlHelper.xml
│ │ │ │ ├── MySqlParameter.xml
│ │ │ │ ├── MySqlParameterCollection.xml
│ │ │ │ └── MySqlTransaction.xml
│ │ │ └── web.config.transform
│ │ └── lib
│ │ ├── net452
│ │ │ ├── MySql.Data.dll
│ │ │ └── MySql.Data.xml
│ │ └── netstandard1.3
│ │ ├── MySql.Data.dll
│ │ └── MySql.Data.xml
│ ├── NLog.4.4.12
│ │ ├── NLog.4.4.12.nupkg
│ │ └── lib
│ │ ├── MonoAndroid10
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── Xamarin.iOS10
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── net35
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── net40
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── net45
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── sl4
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── sl5
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ └── wp8
│ │ ├── NLog.dll
│ │ └── NLog.xml
│ ├── Newtonsoft.Json.10.0.3
│ │ ├── LICENSE.md
│ │ ├── Newtonsoft.Json.10.0.3.nupkg
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net35
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net40
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── portable-net40 sl5 win8 wp8 wpa81
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ └── portable-net45 win8 wp8 wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── tools
│ │ └── install.ps1
│ ├── System.Data.SQLite.1.0.106.0
│ │ └── System.Data.SQLite.1.0.106.0.nupkg
│ ├── System.Data.SQLite.Core.1.0.106.0
│ │ ├── System.Data.SQLite.Core.1.0.106.0.nupkg
│ │ ├── build
│ │ │ ├── net20
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net40
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net45
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ ├── net451
│ │ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ │ ├── x64
│ │ │ │ │ └── SQLite.Interop.dll
│ │ │ │ └── x86
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── net46
│ │ │ ├── System.Data.SQLite.Core.targets
│ │ │ ├── x64
│ │ │ │ └── SQLite.Interop.dll
│ │ │ └── x86
│ │ │ └── SQLite.Interop.dll
│ │ └── lib
│ │ ├── net20
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── System.Data.SQLite.dll.config
│ │ │ └── System.Data.SQLite.xml
│ │ ├── net40
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── System.Data.SQLite.dll.config
│ │ │ └── System.Data.SQLite.xml
│ │ ├── net45
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── System.Data.SQLite.dll.config
│ │ │ └── System.Data.SQLite.xml
│ │ ├── net451
│ │ │ ├── System.Data.SQLite.dll
│ │ │ ├── System.Data.SQLite.dll.config
│ │ │ └── System.Data.SQLite.xml
│ │ └── net46
│ │ ├── System.Data.SQLite.dll
│ │ ├── System.Data.SQLite.dll.config
│ │ └── System.Data.SQLite.xml
│ ├── System.Data.SQLite.EF6.1.0.106.0
│ │ ├── System.Data.SQLite.EF6.1.0.106.0.nupkg
│ │ ├── content
│ │ │ ├── net40
│ │ │ │ ├── app.config.install.xdt
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.transform
│ │ │ ├── net45
│ │ │ │ ├── app.config.install.xdt
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.transform
│ │ │ ├── net451
│ │ │ │ ├── app.config.install.xdt
│ │ │ │ ├── app.config.transform
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.transform
│ │ │ └── net46
│ │ │ ├── app.config.install.xdt
│ │ │ ├── app.config.transform
│ │ │ ├── web.config.install.xdt
│ │ │ └── web.config.transform
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── System.Data.SQLite.EF6.dll
│ │ │ ├── net45
│ │ │ │ └── System.Data.SQLite.EF6.dll
│ │ │ ├── net451
│ │ │ │ └── System.Data.SQLite.EF6.dll
│ │ │ └── net46
│ │ │ └── System.Data.SQLite.EF6.dll
│ │ └── tools
│ │ ├── net40
│ │ │ └── install.ps1
│ │ ├── net45
│ │ │ └── install.ps1
│ │ ├── net451
│ │ │ └── install.ps1
│ │ └── net46
│ │ └── install.ps1
│ ├── System.Data.SQLite.Linq.1.0.106.0
│ │ ├── System.Data.SQLite.Linq.1.0.106.0.nupkg
│ │ ├── content
│ │ │ ├── net20
│ │ │ │ ├── app.config.transform
│ │ │ │ └── web.config.transform
│ │ │ ├── net40
│ │ │ │ ├── app.config.transform
│ │ │ │ └── web.config.transform
│ │ │ ├── net45
│ │ │ │ ├── app.config.transform
│ │ │ │ └── web.config.transform
│ │ │ ├── net451
│ │ │ │ ├── app.config.transform
│ │ │ │ └── web.config.transform
│ │ │ └── net46
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ └── lib
│ │ ├── net20
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ ├── net40
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ ├── net45
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ ├── net451
│ │ │ └── System.Data.SQLite.Linq.dll
│ │ └── net46
│ │ └── System.Data.SQLite.Linq.dll
│ └── sqlSugar.4.6.0.5
│ ├── lib
│ │ └── SqlSugar.dll
│ └── sqlSugar.4.6.0.5.nupkg
└── 5t6t网C#_支持多库的实体生成器高级版.rar
124 directories, 279 files
评论